@import url('https://fonts.googleapis.com/css2?family=Inconsolata&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'inconsolata', sans-serif;
  scroll-behavior: smooth;
}
body{
  min-height: 100vh;
  background: linear-gradient(#091833, #133e7c );
  overflow-x: hidden;
}
header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  line-height: 1.5;
}
header .nameplate{
  display: flex;
  align-items: center;
}
header .career{
  color: #00ffff;
  font-size: 1.3em;
  display: flex;
  justify-content: center;
  align-items: center;
}
header #profile-pic{
  max-height: 100px;
  min-height: 80px;
  max-width: 100px;
  min-width: 80px;
}
header .logo{
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 3em;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-left: 10px;
}
header ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li{
  list-style: none;
  margin-left: 20px;
}
header ul li a{
  text-decoration: none;
  padding: 10px 35px;
  color: #380066;
  background: #00ffff;
  border-radius: 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2em;
}
header ul li a:hover{
  text-decoration: none;
  color: #00ffff;
  background: #ea00d9;  
}
header ul li a.active{
  color: #00ffff;
  background: #ea00d9;  
}

section {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section::before{
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #1c0522, transparent);
  z-index: 1000;
}
section img{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section img#ship{
  padding-top: 420px;
  left: 0;
  padding-left: 50px;
  z-index: 10;
  width: 40%;
  height: auto;
  max-width: initial;
  max-height: initial;
}
section img#purp-planet{
  object-position: 100%;
}
section img#blue-planet{
  object-position: 100%;
}
section img#stars{
  margin-top: 55px;
}



.content{
  position: relative;
  padding-top: 100px;
  background-color: #1c0522;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
}
.content h2{
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 10px;
  padding-left: 10px;
}
.content p{
  font-size: 1.4em;
  color: #fff;
  text-align: justify;
  text-justify: inter-word;
  margin-right: 150px;
}
.scroll-ship{

}
.hidden{
  z-index: 99999;
  margin-top: 150px;
  height: 100%;
  width: 100%;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(100%);
  transform: rotate(90deg);
  transition: all 10s;
}
.show{
  position: relative;
  opacity: 1;
  filter: blur(0);
  transform: translate(0);
  transform: rotate(90deg);
}



#article_img{
  float: top;
  align-items: left;
  width: 80%;
  height: 300px;
  object-fit:cover;
}
.Hobby_pic{
  display: block;
  float: top;
  align-items: left;
  width: 80%;
  height: 300px;
  object-fit:cover;
}